782fbeb24d3c4fbe70dad9e348dc1e2f47adce09,phoneProfilesPlus/src/main/java/sk/henrichg/phoneprofilesplus/BootUpReceiver.java,BootUpReceiver,onReceive,#Context#Intent#,10

Before Change



        if (PPApplication.applicationStartOnBoot)
        {
            PPApplication.logE("BootUpReceiver.onReceive","PhoneProfilesService.instance="+PhoneProfilesService.instance);

            // start ReceiverService
            context.startService(new Intent(context.getApplicationContext(), PhoneProfilesService.class));

After Change



        if (PPApplication.applicationStartOnBoot)
        {
            PPApplication.logE("BootUpReceiver.onReceive","PhoneProfilesService.instance="+PhoneProfilesService.instance);

            // start ReceiverService
            Intent serviceIntent = new Intent(context.getApplicationContext(), PhoneProfilesService.class);